home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000016_news@columbia.edu _Tue Feb 13 13:47:43 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id NAA25246 for <kermit.misc@watsun>; Tue, 13 Feb 1996 13:47:42 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id NAA19498 for kermit.misc@watsun; Tue, 13 Feb 1996 13:47:36 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: modem pooling
  8. Date: 13 Feb 1996 18:47:25 GMT
  9. Organization: Columbia University
  10. Lines: 25
  11. Message-ID: <4fqmbt$j15@apakabar.cc.columbia.edu>
  12. References: <4f5t3g$jfk@ccnet2.ccnet.com> <4fdcc6$1ll@apakabar.cc.columbia.edu> <4fnkc2$b41@ccnet2.ccnet.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4fnkc2$b41@ccnet2.ccnet.com>,
  16. Greg Bernard <gbernard@dbc.com> wrote:
  17. : Thanks for the tip, but I am either a little confused or didn't state
  18. : the problem well enough (or both ;-)).
  19. : I did read your excellent (as always) book, but I guess I see the
  20. : problem a little differently.  There is no terminal server in the
  21. : picture at all, just two PCs running Linux, FreeBSD, etc.  Under those
  22. : conditions, can A use the modem on B via TCP/Kermit?
  23. Sure.  On computer A, at the C-Kermit prompt:
  24.  
  25.   telnet <computer-b>
  26.  
  27. Then log in to computer B, start C-Kermit there, and tell it to:
  28.  
  29.   set modem <type-of-modem>
  30.   set line /dev/<whatever>
  31.   set speed <whatever>
  32.   set flow <whatever>
  33.   set term byte 8     ; These are to make sure the connection from A
  34.   set command byte 8  ; to the most distant computer is 8-bit transparent
  35.   dial <number>
  36.  
  37. - Frank